home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / breakcal_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  85 lines

  1. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  2. #  based on work from
  3. #  (C) Tenable Network Security
  4. #
  5. # This script is released under the GNU GPLv2
  6.  
  7. if(description)
  8. {
  9.  script_id(14225);
  10.  script_bugtraq_id(10847);
  11.  script_version ("$Revision: 1.6 $");
  12.  name["english"] = "BreakCalendar XSS";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host seems to be running BreakCalendar, a web based calendar.
  18.  
  19. This version is vulnerable to cross-site scripting attacks.
  20.  
  21. Solution : Update or disable this CGI suite
  22. Risk factor : Medium";
  23.  
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Checks for BreakCalendar version";
  28.  
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_ATTACK);
  32.  
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  35.  family["english"] = "CGI abuses : XSS";
  36.  family["francais"] = "Abus de CGI";
  37.  script_family(english:family["english"], francais:family["francais"]);
  38.  script_dependencie("http_version.nasl");
  39.  script_require_ports("Services/www", 80);
  40.  exit(0);
  41. }
  42.  
  43. #
  44. # The script code starts here
  45. #
  46.  
  47. include("http_func.inc");
  48. include("http_keepalive.inc");
  49.  
  50. port = get_http_port(default:80);
  51.  
  52. if(!get_port_state(port))
  53.     exit(0);
  54.  
  55. if(http_is_dead(port:port))
  56.     exit(0);
  57.  
  58. function check(url)
  59. {
  60.     req = http_get(item:string(url, "/breakcal/calendar.cgi"),
  61.          port:port);
  62.     r = http_keepalive_send_recv(port:port, data:req);
  63.     if ( r == NULL ) 
  64.         exit(0);
  65.     #Powered by breakcal v1.65pr1
  66.     if(egrep(pattern:"Powered by breakcal v1\.[0-4][0-9]*[^0-9]", string:r))
  67.      {
  68.          security_warning(port);
  69.         exit(0);
  70.     }
  71.  
  72. }
  73.  
  74.  
  75.  
  76.  
  77. check(url:"");
  78. foreach dir (cgi_dirs())
  79. {
  80.      check(url:dir);
  81. }
  82.  
  83.  
  84.  
  85.